home *** CD-ROM | disk | FTP | other *** search
/ Champak 26 (Anniversary Edition) / Volume 26 [Anniversary Edition] - JOGO DISK .iso / Fight / sabermania.swf / scripts / DefineSprite_461_argonzbg / frame_16 / DoAction.as
Text File  |  2006-05-08  |  294b  |  17 lines

  1. if(_root.sabertype == "flashsaber")
  2. {
  3.    _root.opphealth -= (_root.flashsaber.light._width - 75) / 8;
  4.    if(_root.opphealth <= 0)
  5.    {
  6.       _root.opphealth = 0;
  7.       gotoAndStop("lost");
  8.       play();
  9.    }
  10. }
  11. else
  12. {
  13.    _root.opphealth = 0;
  14.    gotoAndStop("dead");
  15.    play();
  16. }
  17.